home *** CD-ROM | disk | FTP | other *** search
/ Dynamic HTML Construction Kit / Dynamic HTML Construction Kit.iso / source_code / dhtmlunl / dhtml.exe / CD Content / Chap16 / dun16_8.txt < prev    next >
Encoding:
Text File  |  1997-12-18  |  197 b   |  9 lines

  1. function inputNumbers()
  2. {
  3.   // Keycode of character '0' is 48, of character '9' is 57.
  4.   if (event.keyCode >= 48 && event.keyCode <= 57)
  5.     return true;
  6.   else
  7.     return false;
  8. }
  9.